home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / glibc108.zip / glibc108 / sysdeps / generic / confname.h < prev    next >
C/C++ Source or Header  |  1993-05-20  |  2KB  |  77 lines

  1. /* `sysconf', `pathconf', and `confstr' NAME values.  Generic version.
  2. Copyright (C) 1993 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4.  
  5. The GNU C Library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Library General Public License as
  7. published by the Free Software Foundation; either version 2 of the
  8. License, or (at your option) any later version.
  9.  
  10. The GNU C Library is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13. Library General Public License for more details.
  14.  
  15. You should have received a copy of the GNU Library General Public
  16. License along with the GNU C Library; see the file COPYING.LIB.  If
  17. not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  18. Cambridge, MA 02139, USA.  */
  19.  
  20. /* Values for the NAME argument to `pathconf' and `fpathconf'.  */
  21. enum
  22.   {
  23.     _PC_LINK_MAX,
  24.     _PC_MAX_CANON,
  25.     _PC_MAX_INPUT,
  26.     _PC_NAME_MAX,
  27.     _PC_PATH_MAX,
  28.     _PC_PIPE_BUF,
  29.     _PC_CHOWN_RESTRICTED,
  30.     _PC_NO_TRUNC,
  31.     _PC_VDISABLE
  32.   };
  33.  
  34. /* Values for the argument to `sysconf'.  */
  35. enum
  36.   {
  37.     _SC_ARG_MAX,
  38.     _SC_CHILD_MAX,
  39.     _SC_CLK_TCK,
  40.     _SC_NGROUPS_MAX,
  41.     _SC_OPEN_MAX,
  42.     _SC_STREAM_MAX,
  43.     _SC_TZNAME_MAX,
  44.     _SC_JOB_CONTROL,
  45.     _SC_SAVED_IDS,
  46.     _SC_VERSION,
  47.     _SC_PAGESIZE,
  48.  
  49.     /* Values for the argument to `sysconf'
  50.        corresponding to _POSIX2_* symbols.  */
  51.     _SC_BC_BASE_MAX,
  52.     _SC_BC_DIM_MAX,
  53.     _SC_BC_SCALE_MAX,
  54.     _SC_BC_STRING_MAX,
  55.     _SC_COLL_WEIGHTS_MAX,
  56.     _SC_EQUIV_CLASS_MAX,
  57.     _SC_EXPR_NEST_MAX,
  58.     _SC_LINE_MAX,
  59.     _SC_RE_DUP_MAX,
  60.  
  61.     _SC_2_VERSION,
  62.     _SC_2_C_BIND,
  63.     _SC_2_C_DEV,
  64.     _SC_2_FORT_DEV,
  65.     _SC_2_FORT_RUN,
  66.     _SC_2_SW_DEV,
  67.     _SC_2_LOCALEDEF
  68.   };
  69.  
  70. #ifdef __USE_POSIX2
  71. /* Values for the NAME argument to `confstr'.  */
  72. enum
  73.   {
  74.     _CS_PATH            /* The default search path.  */
  75.   };
  76. #endif
  77.